389230c1f09faaf2a3f32e57faad50f1bce67e9e,src/org/jgroups/conf/ConfiguratorFactory.java,ConfiguratorFactory,getConfigStream,#File#,299
Before Change
public static InputStream getConfigStream(File file) throws Exception {
if(propertiesOverride != null)
return getConfigStream(propertiesOverride);
checkForNullConfiguration(file);
try {
return new FileInputStream(file);
After Change
public static InputStream getConfigStream(File file) throws Exception {
try {
checkForNullConfiguration(file);
return new FileInputStream(file);
}
catch(IOException ioe) {